home *** CD-ROM | disk | FTP | other *** search
Modula Definition | 1995-03-19 | 775 b | 36 lines |
- DEFINITION MODULE Dates;
-
- (*
- Routines for manipulating Dates.
-
- Revision history:
- 0.00
-
-
- Copyright 1987 by:
- Dale W. Thompson, 14500 Dallas Pkwy. #2091, Dallas, TX 75240
-
- This module and/or its procedures may be freely used by anyone,
- but please acknowledge its use in any copyright notice of a
- publicly distributed program. Thank you.
-
- Please forward any comments, problems, or suggestions to me
- at the address given, or to my CompuServe ID 75115,734.
- *)
-
- FROM DOSLibrary IMPORT DateStampRec;
-
- TYPE
- DateString = ARRAY [0..22] OF CHAR;
-
- PROCEDURE ParseDate( ds : DateStampRec; VAR date : DateString );
- (*
- Returns 'date' as a character string in the form
- "Dow Mth-Da-Yr Hr:Mn:Sc"
- *)
-
-
-
- END (* DEFINITION MODULE *) Dates.
-
-